home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 10 - 1994 / 10.10 Oct 94 / Sprocket / AppSpecific / PreferencesDialogWindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-25  |  623 b   |  36 lines  |  [TEXT/MMCC]

  1. /*
  2.     File:        PreferencesDialogWindow.h
  3.  
  4.     Contains:    A dialog window for App preferences
  5.                 
  6.     Written by: Dave Falkenburg
  7.     
  8.     Copyright:    © 1993-94 by Dave Falkenburg, all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.      
  12.  */
  13.  
  14. #ifndef        _PREFERENCESDIALOGWINDOW_
  15. #define        _PREFERENCESDIALOGWINDOW_
  16.  
  17. #ifndef        _DIALOGWINDOW_
  18. #include    "DialogWindow.h"
  19. #endif
  20.  
  21.  
  22. //    Information about the dialog ID we are using.
  23.  
  24. const DialogTemplateID    kPreferencesDialogTemplateID = 1024;
  25.  
  26.  
  27. class    TPreferencesDialogWindow    :    public TDialogWindow
  28.     {
  29. public:
  30.                         TPreferencesDialogWindow();
  31.  
  32.     virtual    void        ItemHit(short theItem);
  33.     };
  34.  
  35. #endif
  36.